home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / util2 / zipall11.zip / UNZIPTXT.BAT < prev    next >
DOS Batch File  |  1993-05-02  |  445b  |  18 lines

  1. @echo off
  2. REM
  3. REM UNZIPTXT.BAT
  4. REM
  5. REM This BAT file can be executed from within any subdirectory to cause PKUNZIP
  6. REM to explode a TXT.ZIP file previously created using the ZIPTXT.BAT
  7. REM It will delete the TXT.ZIP file after extraction.
  8. REM
  9. pkunzip txt
  10. if errorlevel 1 goto errexit
  11. del txt.zip
  12. echo TXT.ZIP has been exploded and deleted.
  13. goto exit
  14. :errexit
  15. echo Error in execution of PKUNZIP (via UNZIPTXT.BAT).
  16. :exit
  17. echo on
  18.